Tables

Table menuTable menu with option key pressed

The elements for building tables.

Table Template... - A function to easily build a table if it does not have too complicated a structure.

You are presented with a dialog box, as shown above, where you can specify:

You cannot use this function to build more complicated tables which requires attributes such as ROWSPAN and COLSPAN.

Tabs to Rows - Takes a tab-delimited table and make HTML table rows. To use this, first select the text to make table rows of before you choose "Tabs to Rows" from the menu.

Example: If you have the lines

a   b   c
d   e   f

in your document, "Tabs to Rows" will transform them into

<TABLE>
			
<TR><TD>a</TD><TD>b</TD><TD>c</TD></TR>
<TR><TD>d</TD><TD>e</TD><TD>f</TD></TR>
</TABLE>

Do not put more than one tab between each table cell. Alpha makes one table cell for each tab in each row.

When you use this function you are presented with a dialog box as shown above where you can specify:

Rows to Tabs (option) - Converts table rows in a selection to a tab-delimited format. (This is "Tabs to Rows" backwards.) To use this, first select the table rows you want to convert. This function will remove the elements TR, TH and TD, and put one tab between each table cell. Everything in each table row will be put on one line. If the table contains cells of varying length you may have to change the tab size for the table to look pretty. This function does not remove the surrounding TABLE tags.

Import Table... - Function to import a tab delimited table from a file. This works just like 'Tabs to Rows' except that the table is read from a file rather than being selected in the document.

Table<TABLE>
Row<TR>
TR no attr (option)<TR> without attributes.
Header<TH>
TH no attr (option)<TH> without attributes.
Cell<TD>
TD no attr (option)<TD> without attributes.
Caption<CAPTION>